home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / www / library / implemen / htmlgen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  785 b   |  33 lines

  1. /*                  /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTMLGen.html
  2.                                       HTML GENERATOR
  3.                                              
  4.    This module converts structed stream into stream.  That is, given a stream to write to,
  5.    it will give you a structured stream to
  6.    
  7.  */
  8. #ifndef HTMLGEN_H
  9. #define HTMLGEN_H
  10.  
  11. #include "HTML.h"
  12. #include "HTStream.h"
  13.  
  14. /* Subclass:
  15. */
  16. /* extern CONST HTStructuredClass HTMLGeneration; */
  17.  
  18. /* Special Creation:
  19. */
  20. extern HTStructured * HTMLGenerator PARAMS((HTStream * output));
  21.  
  22. extern HTStream * HTPlainToHTML PARAMS((
  23.         HTPresentation *        pres,
  24.         HTParentAnchor *        anchor,
  25.         HTStream *              sink));
  26.  
  27.  
  28. #endif
  29.  
  30. /*
  31.  
  32.     */
  33.